home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 API Bible / Windows 95 API Bible 3 Disc Set.iso / Win32 API Bible Book 3 of 3 / CHAPTE17 / MIXER2.H < prev    next >
Text File  |  1996-04-29  |  903b  |  40 lines

  1.  
  2.  
  3. #define IDM_EXIT           100
  4. #define IDM_TEST           200
  5. #define IDM_ABOUT          300
  6.  
  7. #define DLG_VERFIRST       400
  8. #define DLG_VERLAST        404
  9.  
  10.  
  11. #define IDC_STATIC             -1
  12. #define IDC_MULTICHANNEL_GRP  100
  13. #define IDC_UNIFORM_GRP       101
  14. #define IDC_SHORTNAME_EC      102
  15. #define IDC_LONGNAME_EC       103
  16. #define IDC_VALUE_EC          104
  17. #define IDC_BOUNDS_EC         105
  18. #define IDC_METRICS_EC        106
  19. #define IDC_LINEINFO_EC       107
  20.  
  21. #define IDCB_MULTICHANNEL     200
  22. #define IDCB_UNIFORM          300
  23.  
  24.  
  25. // used to pass data to DisplayControlDlg
  26. //.......................................
  27.  
  28. typedef struct
  29. {
  30.     LPMIXERLINE                 pmxl;
  31.     LPMIXERCONTROL              pmxctrl;
  32.  
  33. } MIXERDLGDATA, *LPMIXERDLGDATA;
  34.  
  35.  
  36. LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
  37. LRESULT CALLBACK About  (HWND, UINT, WPARAM, LPARAM);
  38.  
  39.  
  40.